@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix esip: <http://esipfed.org/esip.owl#> .
@prefix twperson: <http://tw.rpi.edu/person/> .
@prefix twproject: <http://tw.rpi.edu/project/> .

:TWC a foaf:Organization;
	a foaf:Group;
	foaf:homepage <http://tw.rpi.edu/web/>;
	foaf:name "Tetherless World Constellation"^^xsd:string .

:GSFC a foaf:Organization;
	a foaf:Group;
	foaf:homepage <http://www.nasa.gov/centers/goddard/home/index.html>;
	foaf:name " NASA Goddard Space Flight Center"^^xsd:string.

:ChrisLynnes a esip:ProjectParticipant;
	foaf:name "Chris Lynnes"^^xsd:string;
	esip:memberOf :GSFC;
	esip:hasProjectParticipation [a esip:ProjectParticipation;
		esip:onProject twproject:DQSS;
		esip:hasRole [ a esip:PrincipalInvestigator;
			rdfs:label "Principal Investigator"^^xsd:string ] ] .

twperson:PeterFox a esip:ProjectParticipant;
	foaf:name "Peter Fox"^^xsd:string;
	foaf:homepage <http://tw.rpi.edu/web/person/PeterFox>;
	esip:memberOf :TWC;
	esip:hasProjectParticipation [ a esip:ProjectParticipation;
		esip:onProject twproject:DQSS;
		esip:hasRole [ a esip:CoInvestigator;
			rdfs:label "Co-Investigator"^^xsd:string ] ] .

twperson:StephanZednik a esip:ProjectParticipant;
	foaf:name "Stephan Zednik"^^xsd:string;
	foaf:homepage <http://tw.rpi.edu/web/person/StephanZednik>;
	esip:memberOf :TWC;
	esip:hasProjectParticipation [ a esip:projectParticipation;
		esip:onProject twproject:DQSS;
		esip:hasRole [ a esip:TechnicalExpert;
		 	rdfs:label "Technical Expert"^^xsd:string ] ];
	esip:knowsTechnology :Jena .

twproject:DQSS a esip:Project;
	foaf:name "Data Quality Screening Service (DQSS)"^^xsd:string;
	foaf:homepage <http://tw.rpi.edu/web/project/DQSS>;
	esip:isFundedBy :NASA_ACCESS;
	esip:worksWithTechnology :Jena .

:NASA_ACCESS a esip:Program;
	foaf:name "NASA ACCESS"^^xsd:string;
	foaf:homepage <http://lheawww.gsfc.nasa.gov/ACCESS/>.

:ESTO a esip:Program;
	foaf:name "Earth Science Technology Office (ESTO)"^^xsd:string;
	foaf:homepage <http://esto.nasa.gov/>.

:Jena a esip:Technology;
	foaf:homepage <http://jena.sourceforge.net/>;
	foaf:name "Jena Semantic Web Framework"^^xsd:string .
